home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 1 / QRZ Ham Radio Callsign Database - December 1993.iso / ucsd / packet / tcpip / sys5 / iscwmpst.z / iscwmpst / tcp / src / asy.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-10  |  910 b   |  38 lines

  1. /* @(#) $Header: asy.h,v 1.6 91/05/09 07:38:00 deyke Exp $ */
  2.  
  3. #ifndef _ASY_H
  4. #define _ASY_H
  5.  
  6. #ifndef _GLOBAL_H
  7. #include "global.h"
  8. #endif
  9.  
  10. #ifndef _MBUF_H
  11. #include "mbuf.h"
  12. #endif
  13.  
  14. #ifndef _IFACE_H
  15. #include "iface.h"
  16. #endif
  17.  
  18. #define ASY_MAX 16
  19.  
  20. /* In 8250.c: */
  21. int asy_init __ARGS((int dev,struct iface *iface,char *arg1,char *arg2,
  22.     int bufsize,int trigchar,int cts,int rlsd,int speed));
  23. int32 asy_ioctl __ARGS((struct iface *iface,int cmd,int set,int32 val));
  24. int asy_speed __ARGS((int dev,int bps));
  25. int asy_send __ARGS((int dev,struct mbuf *bp));
  26. int asy_stop __ARGS((struct iface *iface));
  27. int get_rlsd_asy __ARGS((int dev, int new_rlsd));
  28. int get_asy __ARGS((int dev,char *buf,int cnt));
  29.  
  30. /* In asyvec.asm: */
  31. INTERRUPT asy0vec __ARGS((void));
  32. INTERRUPT asy1vec __ARGS((void));
  33. INTERRUPT asy2vec __ARGS((void));
  34. INTERRUPT asy3vec __ARGS((void));
  35. INTERRUPT asy4vec __ARGS((void));
  36.  
  37. #endif  /* _ASY_H */
  38.